home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / misc / tasm / misc.zoo / sc11main.asm < prev    next >
Assembly Source File  |  1990-12-26  |  560b  |  26 lines

  1. .COMMENTCHAR "*"
  2. ***************************************
  3. * This is a sample top level assembly file
  4. * to include the appropriate pieces from 
  5. * the Small C compiler for the 68HC11.
  6. *
  7. ***************************************
  8. *
  9. * Map the typical motorola directives to proper TASM syntax
  10. #include "moto.h"
  11.  
  12. * Set the starting point for code
  13.         org    $1000
  14.  
  15. *
  16. * Include users code (from the compiler)
  17. #include "sc11test.asm"
  18.  
  19. *
  20. * Include the library of primitives (compiler support)
  21. #include "sc11lib.asm"
  22.  
  23. * That's all folks.
  24. .end
  25.  
  26.